home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / himetr1r / frmsort.frm (.txt) < prev    next >
Visual Basic Form  |  1999-08-14  |  2KB  |  84 lines

  1. VERSION 5.00
  2. Begin VB.Form frmSort 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Sort by..."
  5.    ClientHeight    =   1485
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   3480
  9.    BeginProperty Font 
  10.       Name            =   "Tahoma"
  11.       Size            =   8.25
  12.       Charset         =   0
  13.       Weight          =   400
  14.       Underline       =   0   'False
  15.       Italic          =   0   'False
  16.       Strikethrough   =   0   'False
  17.    EndProperty
  18.    Icon            =   "frmSort.frx":0000
  19.    LinkTopic       =   "Form1"
  20.    MaxButton       =   0   'False
  21.    MinButton       =   0   'False
  22.    ScaleHeight     =   1485
  23.    ScaleWidth      =   3480
  24.    ShowInTaskbar   =   0   'False
  25.    StartUpPosition =   3  'Windows Default
  26.    Begin VB.CommandButton cmdCancel 
  27.       Caption         =   "&Cancel"
  28.       Height          =   375
  29.       Left            =   2400
  30.       TabIndex        =   3
  31.       Top             =   960
  32.       Width           =   975
  33.    End
  34.    Begin VB.CommandButton cmdOK 
  35.       Caption         =   "&Sort"
  36.       Default         =   -1  'True
  37.       Height          =   375
  38.       Left            =   1200
  39.       TabIndex        =   2
  40.       Top             =   960
  41.       Width           =   1095
  42.    End
  43.    Begin VB.ComboBox cboData 
  44.       Height          =   315
  45.       Left            =   1080
  46.       TabIndex        =   1
  47.       Top             =   120
  48.       Width           =   2055
  49.    End
  50.    Begin VB.Label lblSort 
  51.       AutoSize        =   -1  'True
  52.       Caption         =   "&Sort by:"
  53.       Height          =   195
  54.       Left            =   240
  55.       TabIndex        =   0
  56.       Top             =   120
  57.       Width           =   585
  58.    End
  59. Attribute VB_Name = "frmSort"
  60. Attribute VB_GlobalNameSpace = False
  61. Attribute VB_Creatable = False
  62. Attribute VB_PredeclaredId = True
  63. Attribute VB_Exposed = False
  64. '----------------------------------------
  65. '- Name: Sam Huggill
  66. '- Email: sam@vbsquare.com
  67. '- Web: http://www.vbsquare.com/
  68. '- Company: Lighthouse Internet Solutions
  69. '- Date/Time: 14/08/99 11:33:32
  70. '----------------------------------------
  71. '- Notes:   Simple sort form
  72. '----------------------------------------
  73. Option Explicit
  74. Private Sub cmdCancel_Click()
  75.     Unload Me
  76. End Sub
  77. Private Sub cmdOK_Click()
  78.     frmMain.ctlFavourites1.Sort Me
  79.     Unload Me
  80. End Sub
  81. Private Sub Form_Load()
  82.     CentreForm Me
  83. End Sub
  84.